69bbc0fda78990219026c1128839389e9c282d85,features/core/src/main/java/org/apache/karaf/features/internal/service/RepositoryImpl.java,RepositoryImpl,getRepositories,#,56
Before Change
public URI[] getRepositories() throws IOException {
load();
return features.getRepository().stream().map(URI::create).toArray(URI[]::new);
}
public URI[] getResourceRepositories() throws IOException {
After Change
public URI[] getRepositories() throws IOException {
load();
URI[] result = new URI[features.getRepository().size()];
for (int i = 0; i < features.getRepository().size(); i++) {
String uri = features.getRepository().get(i);
uri = uri.trim();